#!/bin/sh

line=`uname -m`;
if test ${line} == i386 || test ${line} == x86_64
then
  exit 0;
fi
exit 114;

